HTMLify

style.css
Views: 42 | Author: cody
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	background: #19172e;
}
.cover {
	max-width: 485px;
	width: 100%;
	background: #fff;
	padding: 22px 30px 40px;
	border-radius: 10px;
}

.cover header {
	color: #e45826;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
}
.cover .captcha-box {
	display: flex;
	height: 65px;
	margin: 30px 0 20px;
	align-items: center;
	justify-content: space-between;
}
.captcha-box .captcha-img {
	height: 100%;
	width: 345px;
	user-select: none;
	background: #000;
	border-radius: 5px;
	position: relative;
}
.captcha-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
	opacity: 0.95;
}
.captcha-img .captcha {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	color: #ececec;
	font-size: 35px;
	font-style: italic;
	text-align: center;
	letter-spacing: 10px;
	transform: translate(-50%, -50%);
}
.cover button {
	outline: none;
	border: none;
	color: #fff;
	cursor: pointer;
	background: #e45826;
	border-radius: 5px;
}

.captcha-box .reload {
	width: 75px;
	height: 100%;
	font-size: 25px;
}

.cover .input-text {
	height: 60px;
	width: 100%;
	position: relative;
}
.input-text input {
	width: 100%;
	height: 100%;
	outline: none;
	padding-left: 20px;
	font-size: 20px;
	border-radius: 5px;
	border: 1px solid #bfbfbf;
}
.input-text input {
	padding-left: 19px;
	border: 2px solid #e45826;
}

.input-text .verify {
	position: absolute;
	right: 7px;
	top: 50%;
	font-size: 17px;
	height: 45px;
	padding: 0 20px;

	transform: translateY(-50%);
}

.cover .result {
	display: none;
	font-size: 18px;
	text-align: center;
	margin: 20px 0 -5px;
}

Comments